Principal component analysis (PCA) will be used as a dimensionality reduction technique to find the over-arching dimensions that represent knowledge about social relationships. In this study, we will replicate a previous study done nearly 40 years about (Wish et al.,1976).
This dataset was collected from a survey hosted on mturk. The survey data was cleaned with a separate python script. A matrix was created for the average rating of social relationships on dimensions that are thought to characterize these relationships. The relationships and dimensions used in this analysis are the same ones from Wish et al., 1976.
‘Wish relationships rated on Wish dimensions’
PCA will output the same number of components as there are dimension inputs. As the components are ranked by how much variance they explain, we can exclude some components which do not add much additional information.
We will use parallel analysis to indicate what the optimal number of components to include would be.
## Parallel analysis suggests that the number of factors = NA and the number of components = 2
## png
## 2
## Parallel analysis suggests that the number of factors = NA and the number of components = 2
Parallel analysis indicates that having only 2 components would be optimal. But to better match the literature, and to be consistent with possible future analyses, we will include 4 components.
PCA with no rotation is done here to visualize the amount of variance accounted for by each component.
## png
## 2
Rotations are used in principal component analyses to be able to better interpret the data. There are two main types of rotations, varimax and oblimin. Here, we will use varimax rotation, as it will maximize the component loadings so that dimensions are more strongly loaded onto a single component, rather than across components. Because of this, our resulting components may correlate with each other. Oblimin rotation results in components that are uncorrelated to each other.
## [1] "First four components account for 94.36% of the variance"
Wish et al., 1976 - Table 2
PC1 = Valence
PC2 = Formality
PC3 = Equality
PC4 = Activeness